11 lines
338 B
C#
11 lines
338 B
C#
namespace PARR.DAL.DomainServices.Shortcodes.Models
|
|
{
|
|
internal class CachedGroupedShortCode
|
|
{
|
|
public string Value { get; set; } = string.Empty;
|
|
public DateTimeOffset Timestamp { get; set; }
|
|
public string? Source { get; set; } = "ShortcodesService";
|
|
public int Version { get; set; } = 1;
|
|
}
|
|
}
|