Mercurial > pub > bltoolkit
annotate Demo/Asp.Net/ObjectModel/CustomProfile.cs @ 9:1e85f66cf767 default tip
update bltoolkit
author | nickolay |
---|---|
date | Thu, 05 Apr 2018 20:53:26 +0300 |
parents | f990fcb411a9 |
children |
rev | line source |
---|---|
0 | 1 using System; |
2 | |
3 using BLToolkit.DataAccess; | |
4 using BLToolkit.Mapping; | |
5 | |
6 namespace PetShop.ObjectModel | |
7 { | |
8 public class CustomProfile | |
9 { | |
10 [PrimaryKey] | |
11 [MapField("UniqueID")] public int ID; | |
12 [MapField("Username")] public string UserName; | |
13 public string ApplicationName; | |
14 public bool? IsAnonymous; | |
15 public DateTime? LastActivityDate; | |
16 public DateTime? LastUpdatedDate; | |
17 } | |
18 } |