Mercurial > pub > bltoolkit
annotate Demo/Asp.Net/ObjectModel/CustomProfile.cs @ 8:a34cfdde80d6
removed strong signing
added FrameworkPathOverride for linux builds
| author | cin |
|---|---|
| date | Wed, 29 Nov 2017 12:43:52 +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 } |
