Files
mixtape/zero.Core/Routing/Entities/LinkPreview.cs
T
2021-11-20 13:52:28 +01:00

14 lines
235 B
C#

namespace zero.Routing;
public class LinkPreview
{
public string Id { get; set; }
public string Icon { get; set; }
public string Text { get; set; }
public string Name { get; set; }
public bool HasError { get; set; }
}