Mercurial > pub > bltoolkit
annotate Demo/Asp.Net/ObjectModel/CustomProfile.cs @ 3:1ef98bd70424
!bug 100 +3h
Исправление проблемы BLToolkit + mono 3.4
author | cin |
---|---|
date | Fri, 22 Aug 2014 17:34:46 +0400 |
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 } |