mirror of
https://github.com/dcronqvist/DotTiled.git
synced 2025-05-08 20:06:03 +03:00
14 lines
293 B
C#
14 lines
293 B
C#
namespace DotTiled;
|
|
|
|
public class FileProperty : IProperty
|
|
{
|
|
public required string Name { get; set; }
|
|
public PropertyType Type => PropertyType.File;
|
|
public required string Value { get; set; }
|
|
|
|
public IProperty Clone() => new FileProperty
|
|
{
|
|
Name = Name,
|
|
Value = Value
|
|
};
|
|
}
|