15 lines
311 B
C#
15 lines
311 B
C#
|
using System;
|
|||
|
using System.Runtime.Serialization;
|
|||
|
|
|||
|
namespace Tanshu.Accounts.Contracts
|
|||
|
{
|
|||
|
[DataContract]
|
|||
|
public class PaymentSheetDisplayBO : PaymentSheetBO
|
|||
|
{
|
|||
|
[DataMember]
|
|||
|
public string Name { get; set; }
|
|||
|
[DataMember]
|
|||
|
public string Department { get; set; }
|
|||
|
}
|
|||
|
}
|