mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-02-06 06:54:58 +00:00
14 lines
321 B
C#
14 lines
321 B
C#
using System;
|
|
|
|
namespace WelsonJS.Service.Model
|
|
{
|
|
public class FileMatchResult
|
|
{
|
|
public string Id { get; set; }
|
|
public string FilePath { get; set; }
|
|
public ulong Offset { get; set; }
|
|
public string RuleName { get; set; }
|
|
public DateTime LastChecked { get; set; }
|
|
}
|
|
}
|