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.

20 lines
405 B

10 years ago
  1. 
  2. namespace Sevomin.Models
  3. {
  4. public class PostResultViewModel
  5. {
  6. public PostResultViewModel()
  7. {
  8. }
  9. public PostResultViewModel(bool success, string message)
  10. {
  11. this.Success = success;
  12. this.Message = message;
  13. }
  14. public bool Success { get; set; }
  15. public string Message { get; set; }
  16. }
  17. }