19 lines
397 B
C#
19 lines
397 B
C#
using System;
|
|
using System.Windows.Media;
|
|
|
|
namespace BeWo.Scheduler
|
|
{
|
|
public class BeWoResource
|
|
{
|
|
public Object ResourceObject { get; set; }
|
|
|
|
public Color Color { get; set; }
|
|
|
|
public string DisplayName { get; set; }
|
|
|
|
public string MenuCaption { get; set; }
|
|
|
|
public BeWoAppointmentCategory ResourceCategory { get; set; }
|
|
}
|
|
}
|