mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
11 lines
192 B
C#
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; }
|
|
}
|