Add "Author" field to plugins.

This commit is contained in:
2018-08-29 22:15:43 +01:00
parent bb359d88d3
commit abfc476e01
155 changed files with 937 additions and 980 deletions

View File

@@ -45,8 +45,9 @@ namespace DiscImageChef.Partitions
// e.g.: "part nvram 10110 10112\npart fossil 10112 3661056\n"
public class Plan9 : IPartition
{
public string Name => "Plan9 partition table";
public Guid Id => new Guid("F0BF4FFC-056E-4E7C-8B65-4EAEE250ADD9");
public string Name => "Plan9 partition table";
public Guid Id => new Guid("F0BF4FFC-056E-4E7C-8B65-4EAEE250ADD9");
public string Author => "Natalia Portillo";
public bool GetInformation(IMediaImage imagePlugin, out List<Partition> partitions, ulong sectorOffset)
{