11 lines
191 B
C#
11 lines
191 B
C#
|
namespace UrlShortener
|
||
|
{
|
||
|
public class UrlShortenEntry
|
||
|
{
|
||
|
public long Id {get;set;}
|
||
|
|
||
|
public string Url {get;set;}="";
|
||
|
|
||
|
public DateTime Created {get;set;}
|
||
|
}
|
||
|
}
|