diff options
| author | transtrike <transtrike@gmail.com> | 2020-12-18 08:04:47 +0200 |
|---|---|---|
| committer | transtrike <transtrike@gmail.com> | 2020-12-18 08:04:47 +0200 |
| commit | 8cc02d6195784ca2783b7ae8daa1cf9fd20902a9 (patch) | |
| tree | 890a3276fdf2632d3f1dd3b68bd2ea8a0a831f5b /src/DevHive.Web/Models/Identity/Role | |
| parent | 902e523a712b4a8f6dfcc2114c73ca85dff1e9a9 (diff) | |
| download | DevHive-8cc02d6195784ca2783b7ae8daa1cf9fd20902a9.tar DevHive-8cc02d6195784ca2783b7ae8daa1cf9fd20902a9.tar.gz DevHive-8cc02d6195784ca2783b7ae8daa1cf9fd20902a9.zip | |
Fixed Id showing in web model
Diffstat (limited to 'src/DevHive.Web/Models/Identity/Role')
| -rw-r--r-- | src/DevHive.Web/Models/Identity/Role/RoleWebModel.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/DevHive.Web/Models/Identity/Role/RoleWebModel.cs b/src/DevHive.Web/Models/Identity/Role/RoleWebModel.cs new file mode 100644 index 0000000..7a3ed96 --- /dev/null +++ b/src/DevHive.Web/Models/Identity/Role/RoleWebModel.cs @@ -0,0 +1,10 @@ +using System; + +namespace DevHive.Web.Models.Identity.Role +{ + public class RoleWebModel + { + public string Name { get; set; } + } +} +2
\ No newline at end of file |
