mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
15 lines
397 B
Beef
15 lines
397 B
Beef
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Beefy.widgets
|
|
{
|
|
public struct DesignEditableAttribute : Attribute
|
|
{
|
|
public String DisplayType { get; set; }
|
|
public String Group { get; set; }
|
|
public String DisplayName { get; set; }
|
|
public String SortName { get; set; }
|
|
public bool DefaultEditString { get; set; }
|
|
}
|
|
}
|