mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-29 04:57:02 +00:00
19 lines
492 B
C#
19 lines
492 B
C#
// FileMatchResult.cs
|
|
// SPDX-License-Identifier: MS-RL
|
|
// SPDX-FileCopyrightText: 2025 Catswords OSS and WelsonJS Contributors
|
|
// https://github.com/gnh1201/welsonjs
|
|
//
|
|
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; }
|
|
}
|
|
}
|