| 1234567891011121314151617181920212223 |
- namespace VberAdmin.Web.Models.Modals;
- public class VmModalHeader
- {
- public string Title { get; set; }
- public string PreFix { get; set; }
- public string SubFix { get; set; }
- public string Content { get; set; }
- public VmModalHeader(string title, string preFix = null, string subFix = null)
- {
- Title = title;
- PreFix = preFix;
- SubFix = subFix;
- }
- public VmModalHeader WithContent(string content)
- {
- Content = content;
- return this;
- }
- }
|