mirror of
https://github.com/kwsch/pkNX.git
synced 2026-03-22 02:04:15 -05:00
File scoped namespaces for all lib projects netstandard2.0 => net6; now uniform. bye netframework!
9 lines
136 B
C#
9 lines
136 B
C#
using System;
|
|
|
|
namespace pkNX.Containers;
|
|
|
|
public class FileCountDeterminedEventArgs : EventArgs
|
|
{
|
|
public int Total { get; set; }
|
|
}
|