22 lines
499 B
C#
22 lines
499 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace BS.Shared.DataContracts
|
|
{
|
|
[DataContract]
|
|
public partial class AppointmentCategoryDC : IDataContract
|
|
{
|
|
[DataMember]
|
|
public long? AppointmentCategoryOid { get; set; }
|
|
|
|
[DataMember]
|
|
public long? AppointmentCategoryVersion { get; set; }
|
|
|
|
[DataMember]
|
|
public string DisplayName { get; set; }
|
|
|
|
[DataMember]
|
|
public string Color { get; set; }
|
|
|
|
|
|
}
|
|
} |