forked from sim0n00ps/OF-DL
OFDL: Added UserInfo model and InternalsVisibleTo
This commit is contained in:
parent
f273291112
commit
1f91d28238
36
OF DL.Core/Models/Entities/Users/UserInfo.cs
Normal file
36
OF DL.Core/Models/Entities/Users/UserInfo.cs
Normal file
@ -0,0 +1,36 @@
|
||||
namespace OF_DL.Models.Entities.Users;
|
||||
|
||||
public class UserInfo : User
|
||||
{
|
||||
public long? Id { get; set; }
|
||||
|
||||
public string? SubscribePrice { get; set; }
|
||||
public string? CurrentSubscribePrice { get; set; }
|
||||
|
||||
public bool? IsPaywallRequired { get; set; }
|
||||
public bool? IsActive { get; set; }
|
||||
public bool? IsRestricted { get; set; }
|
||||
|
||||
public bool? SubscribedBy { get; set; }
|
||||
public bool? SubscribedByExpire { get; set; }
|
||||
public DateTimeOffset? SubscribedByExpireDate { get; set; }
|
||||
public bool? SubscribedByAutoprolong { get; set; }
|
||||
public bool? IsPendingAutoprolong { get; set; }
|
||||
|
||||
public bool? SubscribedIsExpiredNow { get; set; }
|
||||
|
||||
public bool? SubscribedOn { get; set; }
|
||||
public bool? SubscribedOnExpiredNow { get; set; }
|
||||
public string? SubscribedOnDuration { get; set; }
|
||||
|
||||
public string? About { get; set; }
|
||||
|
||||
public int? PostsCount { get; set; }
|
||||
public int? ArchivedPostsCount { get; set; }
|
||||
public int? PrivateArchivedPostsCount { get; set; }
|
||||
|
||||
public int? PhotosCount { get; set; }
|
||||
public int? VideosCount { get; set; }
|
||||
public int? AudiosCount { get; set; }
|
||||
public int? MediasCount { get; set; }
|
||||
}
|
||||
@ -23,4 +23,8 @@
|
||||
<PackageReference Include="xFFmpeg.NET" Version="7.2.0"/>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<InternalsVisibleTo Include="Cajetan.OF-DL" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user