mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
16 lines
287 B
C#
16 lines
287 B
C#
using System.ComponentModel;
|
|
|
|
namespace Remotely.Server.Models;
|
|
|
|
public class ColorPickerModel
|
|
{
|
|
[DisplayName("Red")]
|
|
public byte Red { get; set; }
|
|
|
|
[DisplayName("Green")]
|
|
public byte Green { get; set; }
|
|
|
|
[DisplayName("Blue")]
|
|
public byte Blue { get; set; }
|
|
}
|