ModalHeaderViewModel.cs 337 B

1234567891011121314
  1. namespace ShwasherSys.Models.Modal
  2. {
  3. public class ModalHeaderViewModel
  4. {
  5. public string Title { get; set; }
  6. public string Operation { get; set; }
  7. public ModalHeaderViewModel(string title, string operation = null)
  8. {
  9. Title = title;
  10. Operation = operation;
  11. }
  12. }
  13. }