8 lines
180 B
C#
8 lines
180 B
C#
|
|
namespace LANCommander.Packager.Models;
|
||
|
|
|
||
|
|
public class FileChangeEntry
|
||
|
|
{
|
||
|
|
public string Verb { get; set; } = string.Empty;
|
||
|
|
public string Path { get; set; } = string.Empty;
|
||
|
|
}
|