123456789101112131415 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace InABox.Core
- {
- public class UserPlatform : EnclosedEntity
- {
- [TextBoxEditor(Visible = Visible.Optional, Editable = Editable.Hidden)]
- public string DesktopVersion { get; set; }
- [TextBoxEditor(Visible = Visible.Optional, Editable = Editable.Hidden)]
- public string MobileVersion { get; set; }
- }
- }
|