25 lines
562 B
C#
25 lines
562 B
C#
using System.Collections.Generic;
|
|
|
|
using BS.Shared;
|
|
|
|
namespace BeWo.Data.Entities
|
|
{
|
|
public class AppointmentCategory : BeWoEntityBase
|
|
{
|
|
|
|
public static string PropertyName_DisplayName = "DisplayName";
|
|
|
|
public static string PropertyName_Color = "Color";
|
|
|
|
public AppointmentCategory()
|
|
{
|
|
this._Tid = TableID.AppointmentCategory;
|
|
}
|
|
|
|
public virtual string DisplayName { get; set; }
|
|
|
|
|
|
public virtual string Color { get; set; }
|
|
|
|
}
|
|
} |