mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
20 lines
384 B
C#
20 lines
384 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
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; }
|
|
}
|