Files
mixtape/zero.Core/Routing/Models/LinkPreview.cs
T

14 lines
235 B
C#
Raw Normal View History

2021-11-19 16:11:12 +01:00
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; }
}