aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/FspSrv/FileTimestamp.cs
blob: 879fb78cde1b99af55665a9edf703eabb4dff7cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using System;

namespace Ryujinx.HLE.HOS.Services.FspSrv
{
    struct FileTimestamp
    {
        public DateTime CreationDateTime;
        public DateTime ModifiedDateTime;
        public DateTime LastAccessDateTime;
    }
}