mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
16 lines
397 B
Beef
16 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; }
|
||
|
}
|
||
|
}
|