AttendanceKanban.cs 643 B

123456789101112131415161718192021
  1. using System.Windows.Media.Imaging;
  2. using PropertyChanged;
  3. using Syncfusion.UI.Xaml.Kanban;
  4. namespace PRSDesktop
  5. {
  6. [DoNotNotify]
  7. public class AttendanceKanban : KanbanModel
  8. {
  9. public string Name { get; set; }
  10. public BitmapImage Image { get; set; }
  11. public string Clockin { get; set; }
  12. public string Clockout { get; set; }
  13. public string Address { get; set; }
  14. public string TextColor { get; set; }
  15. public string Type { get; set; }
  16. public string BackgroundColor { get; set; }
  17. public string Version { get; set; }
  18. public bool Active { get; set; }
  19. }
  20. }