Remotely/Agent.Installer.Win/Models/BrandingInfo.cs
2023-08-21 12:05:29 -07:00

11 lines
192 B
C#

#nullable enable
namespace Remotely.Agent.Installer.Win.Models;
public class BrandingInfo
{
public string Product { get; set; } = "Remotely";
public string? Icon { get; set; }
}