url-shortener/UrlShortenEntry.cs

11 lines
191 B
C#
Raw Permalink Normal View History

2023-07-18 00:55:34 +00:00
namespace UrlShortener
{
public class UrlShortenEntry
{
public long Id {get;set;}
public string Url {get;set;}="";
public DateTime Created {get;set;}
}
}