18 lines
382 B
C#
18 lines
382 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Models
|
|
{
|
|
public class UIComponents
|
|
{
|
|
public string ID { get; set; }
|
|
public string Type { get; set; }
|
|
public bool Visible { get; set; }
|
|
public void Render() { }
|
|
public void Update(object data) { }
|
|
}
|
|
}
|