11 lines
188 B
C#
11 lines
188 B
C#
using System;
|
|
using FileCompression.Enums;
|
|
|
|
namespace FileCompression.Models;
|
|
|
|
public class Entry
|
|
{
|
|
public required string Path { get; set; }
|
|
public EntryType Type { get; set; }
|
|
}
|