13 lines
405 B
C#
13 lines
405 B
C#
namespace Socialize.Api.Modules.CalendarIntegrations.Data;
|
|
|
|
public class UserCalendarExportFeed
|
|
{
|
|
public Guid Id { get; init; }
|
|
public Guid UserId { get; set; }
|
|
public string? Token { get; set; }
|
|
public string? TokenHash { get; set; }
|
|
public DateTimeOffset CreatedAt { get; init; }
|
|
public DateTimeOffset UpdatedAt { get; set; }
|
|
public DateTimeOffset? RevokedAt { get; set; }
|
|
}
|