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

16 lines
273 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; }
public bool IsActive { get; set; }
}