comparison Demo/Asp.Net/ObjectModel/CustomProfile.cs @ 0:f990fcb411a9

Копия текущей версии из github
author cin
date Thu, 27 Mar 2014 21:46:09 +0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f990fcb411a9
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 }