You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
501 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Sevomin.Models
  7. {
  8. public class PostResultViewModel
  9. {
  10. public PostResultViewModel()
  11. {
  12. }
  13. public PostResultViewModel(bool success, string message)
  14. {
  15. this.Success = success;
  16. this.Message = message;
  17. }
  18. public bool Success { get; set; }
  19. public string Message { get; set; }
  20. }
  21. }