123456789101112131415161718192021 |
- using System.Windows.Media.Imaging;
- using PropertyChanged;
- using Syncfusion.UI.Xaml.Kanban;
- namespace PRSDesktop
- {
- [DoNotNotify]
- public class AttendanceKanban : KanbanModel
- {
- public string Name { get; set; }
- public BitmapImage Image { get; set; }
- public string Clockin { get; set; }
- public string Clockout { get; set; }
- public string Address { get; set; }
- public string TextColor { get; set; }
- public string Type { get; set; }
- public string BackgroundColor { get; set; }
- public string Version { get; set; }
- public bool Active { get; set; }
- }
- }
|