Skip to content

Commit 149bbfc

Browse files
committed
Adding profile picure attributes.
1 parent 70a5680 commit 149bbfc

File tree

1 file changed

+34
-51
lines changed
  • eFormApi.BasePn/Infrastructure/Database/Entities

1 file changed

+34
-51
lines changed
Lines changed: 34 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,39 @@
11
using System.Collections.Generic;
22
using Microsoft.AspNetCore.Identity;
33

4-
namespace Microting.eFormApi.BasePn.Infrastructure.Database.Entities
5-
{
6-
public class EformUser : IdentityUser<int>
7-
{
8-
public string FirstName { get; set; }
9-
10-
public string LastName { get; set; }
11-
12-
public string Locale { get; set; }
13-
14-
public bool IsGoogleAuthenticatorEnabled { get; set; }
15-
16-
public string GoogleAuthenticatorSecretKey { get; set; }
17-
18-
public virtual ICollection<EformUserRole> UserRoles { get; set; }
19-
20-
public bool DarkTheme { get; set; }
21-
22-
public string TimeZone { get; set; }
23-
24-
public string Formats { get; set; }
25-
26-
public string ArchiveSoftwareVersion { get; set; }
27-
28-
public string ArchiveModel { get; set; }
29-
30-
public string ArchiveManufacturer { get; set; }
4+
namespace Microting.eFormApi.BasePn.Infrastructure.Database.Entities;
315

32-
public string ArchiveOsVersion { get; set; }
33-
34-
public string ArchiveLastIp { get; set; }
35-
36-
public string ArchiveLastKnownLocation { get; set; }
37-
38-
public string ArchiveLookedUpIp { get; set; }
39-
40-
public string TimeRegistrationSoftwareVersion { get; set; }
41-
42-
public string TimeRegistrationModel { get; set; }
43-
44-
public string TimeRegistrationManufacturer { get; set; }
45-
46-
public string TimeRegistrationOsVersion { get; set; }
47-
48-
public string TimeRegistrationLastIp { get; set; }
49-
50-
public string TimeRegistrationLastKnownLocation { get; set; }
51-
52-
public string TimeRegistrationLookedUpIp { get; set; }
53-
54-
public string EmailSha256 { get; set; }
55-
}
6+
public class EformUser : IdentityUser<int>
7+
{
8+
public string FirstName { get; set; }
9+
10+
public string LastName { get; set; }
11+
12+
public string Locale { get; set; }
13+
14+
public bool IsGoogleAuthenticatorEnabled { get; set; }
15+
16+
public string GoogleAuthenticatorSecretKey { get; set; }
17+
18+
public virtual ICollection<EformUserRole> UserRoles { get; set; }
19+
public bool DarkTheme { get; set; }
20+
public string TimeZone { get; set; }
21+
public string Formats { get; set; }
22+
public string ArchiveSoftwareVersion { get; set; }
23+
public string ArchiveModel { get; set; }
24+
public string ArchiveManufacturer { get; set; }
25+
public string ArchiveOsVersion { get; set; }
26+
public string ArchiveLastIp { get; set; }
27+
public string ArchiveLastKnownLocation { get; set; }
28+
public string ArchiveLookedUpIp { get; set; }
29+
public string TimeRegistrationSoftwareVersion { get; set; }
30+
public string TimeRegistrationModel { get; set; }
31+
public string TimeRegistrationManufacturer { get; set; }
32+
public string TimeRegistrationOsVersion { get; set; }
33+
public string TimeRegistrationLastIp { get; set; }
34+
public string TimeRegistrationLastKnownLocation { get; set; }
35+
public string TimeRegistrationLookedUpIp { get; set; }
36+
public string EmailSha256 { get; set; }
37+
public string ProfilePicture { get; set; }
38+
public string ProfilePictureSnapshot { get; set; }
5639
}

0 commit comments

Comments
 (0)