mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Use using instead of inlined namespace
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using SabreTools.Models.Metadata;
|
||||
using SabreTools.Serialization.Interfaces;
|
||||
|
||||
namespace SabreTools.DatFiles
|
||||
@@ -11,7 +12,7 @@ namespace SabreTools.DatFiles
|
||||
/// <typeparam name="V">IModelSerializer for cross-model serialization</typeparam>
|
||||
public abstract class SerializableDatFile<T, U, V> : DatFile
|
||||
where U : IFileSerializer<T>
|
||||
where V : IModelSerializer<T, Models.Metadata.MetadataFile>
|
||||
where V : IModelSerializer<T, MetadataFile>
|
||||
{
|
||||
/// <inheritdoc/>
|
||||
protected SerializableDatFile(DatFile? datFile) : base(datFile) { }
|
||||
|
||||
Reference in New Issue
Block a user